home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / bat6.zip / SHOWANY.BAT < prev    next >
DOS Batch File  |  1992-08-19  |  263b  |  14 lines

  1. echo off
  2. echo this file displays any file requested
  3. if /%1==/ goto error1
  4. if not exist %1 goto error2
  5. type %1 |more
  6. goto end
  7. :error1
  8. echo You must enter a filename
  9. echo (with optional drive:path)
  10. goto end
  11. :error2
  12. echo No %1 exist on this drive.
  13. :end
  14.